home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / libiberty / rindex.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  147 b   |  12 lines

  1. /* Stub implementation of (obsolete) rindex(). */
  2.  
  3. extern char *strrchr ();
  4.  
  5. char *
  6. rindex (s, c)
  7.   char *s;
  8.   int c;
  9. {
  10.   return strrchr (s, c);
  11. }
  12.